ad45a9d10bca9b06075211d8e1a0b050f46f1ff0,plugins/maven/src/main/java/org/jetbrains/idea/maven/execution/MavenExecuteGoalDialog.java,MavenExecuteGoalDialog,setUpDialog,#,58

Before Change


    myGoalsComboBox.setLightWeightPopupEnabled(false);

    EditorComboBoxEditor editor = new StringComboboxEditor(myProject, PlainTextFileType.INSTANCE, myGoalsComboBox);
    myGoalsComboBox.setRenderer(new EditorComboBoxRenderer(editor));

    myGoalsComboBox.setEditable(true);
    myGoalsComboBox.setEditor(editor);

After Change


      goalsComboBox.setLightWeightPopupEnabled(false);

      EditorComboBoxEditor editor = new StringComboboxEditor(myProject, PlainTextFileType.INSTANCE, goalsComboBox);
      goalsComboBox.setRenderer(new EditorComboBoxRenderer(editor));

      goalsComboBox.setEditable(true);
      goalsComboBox.setEditor(editor);